home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / ContainerCreationPolicy.as < prev    next >
Text File  |  2009-02-12  |  519b  |  25 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class ContainerCreationPolicy
  6.    {
  7.       
  8.       public static const ALL:String = "all";
  9.       
  10.       public static const QUEUED:String = "queued";
  11.       
  12.       public static const NONE:String = "none";
  13.       
  14.       mx_internal static const VERSION:String = "3.0.0.0";
  15.       
  16.       public static const AUTO:String = "auto";
  17.        
  18.       
  19.       public function ContainerCreationPolicy()
  20.       {
  21.          super();
  22.       }
  23.    }
  24. }
  25.